home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / dme / globals.c < prev    next >
C/C++ Source or Header  |  1997-09-09  |  1KB  |  54 lines

  1. /*
  2.  *    (c)Copyright 1992-1997 Obvious Implementations Corp.  Redistribution and
  3.  *    use is allowed under the terms of the DICE-LICENSE FILE,
  4.  *    DICE-LICENSE.TXT.
  5.  */
  6.  
  7. /*
  8.  * GLOBALS.C
  9.  */
  10.  
  11. #include "defs.h"
  12.  
  13. Prototype MLIST     DBase;
  14. Prototype ED        *Ep;
  15. Prototype char        Overide;
  16. Prototype char        Savetabs;
  17. Prototype char        memoryfail, Nsu, Msgchk;
  18. Prototype ubyte     CtlC;
  19. Prototype ubyte     Current[256];
  20. Prototype ubyte     Deline[256];
  21. Prototype ubyte     Space[32];
  22. Prototype short     Clen;
  23. Prototype char        Abortcommand, MShowTitle;
  24. Prototype char        Comlinemode;
  25. Prototype char        *Partial;
  26. Prototype char        *String;
  27.  
  28. ED *Ep;         /* Current Window        */
  29. MLIST DBase;        /* Doubly linked list of Files    */
  30.  
  31. char    Nsu;        /* Used in formatter to disable screen updates    */
  32. char    Msgchk;     /* Force message queue check for break        */
  33. ubyte    CtlC;        /* Keycode for 'c'                              */
  34. char    Savetabs;    /* SaveTabs mode?                */
  35. char    memoryfail;    /* out of memory flag                */
  36. ubyte    Deline[256];    /* last deleted line                */
  37. ubyte    Current[256];    /* Current Line buffer and length        */
  38. ubyte    Space[32] = { 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
  39.             32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32 };
  40. short    Clen;
  41. char    *Partial;    /* Partial command line when executing ESCIMM    */
  42. char    *String;    /* String Capture variable            */
  43.  
  44. char    Comlinemode;
  45. char    Abortcommand;
  46.  
  47. long    BSline = -1;
  48. long    BEline = -1;
  49. short    BSchar;
  50. short    BEchar;
  51.  
  52. ED    *BEp;
  53.  
  54.